/*Common used styles for generic elements*/
*
	{
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	line-height: 100%;
	outline: none;
	}
body
	{
	background: #ffffff;
    }
html,
body
	{
	width: 100%;
	height: 100%;
    padding: 0px;
    margin: 0px;
    -webkit-touch-callout: none;                /* prevent callout to copy image, etc when tap to hold */
    -webkit-text-size-adjust: none;             /* prevent webkit from resizing text to fit */
	}
th,
td
	{
	padding: 0px 0px 0px 0px;
	vertical-align: top;
	}
a img
	{
	border: 0px none;
	}
p,
h1,
h2,
h3,
h4,
h5,
h6
	{
	padding: 0px 0px 0px 0px;
	}
input.button,
input.checkbox,
label
	{
	cursor: pointer;
	}
/*--- [RULES: icons list] ---*/
.icon {
	width: 16px;
	height: 16px;
	display: inline-block;
	vertical-align: middle;
	background-repeat: no-repeat;
}
/**[RULES: Common use ]---------------*/
body, td, th, input, select, textarea
	{
	font-family: 'Open Sans', Arial, Verdana, Tahoma, sans-serif;
	font-size: 75%;
	color: #231f20;
	}
a,
a:visited,
a:hover
	{
	text-decoration: none;
	color: #000000;
	}
p
	{
	margin: 0px 0px 14px 0px;
	}
form
	{
	margin: 0px;
	padding: 0px;
	}
ul
	{
	padding-left: 4px;
	margin: 0px 0px 12px 0px;
	}	
	ul li
		{
		padding-left: 15px;
		list-style-type: none;
		list-style-position: outside;
		margin: 0px 0px 3px 0px;
		}
textarea
	{
	padding: 0px 8px;
	overflow: auto;
	border: 0px;
	}	
h1, h2, h3, h4, h5
	{
	margin-top: 0px;
	}
h3 {
	font-size: 13px;
	font-weight: bold;
	color: #006ea4;
	margin: 0px 0px 10px 0px;
}
/**[/RULES]---------------------------*/
input[type="text"],
input[type="password"],
textarea {
	height: 52px;
	padding: 6px 6px 4px 6px;
	border: 5px solid #eceef5;
	box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.1), -1px 1px 1px rgba(0, 0, 0, 0.1);
	border-radius: 6px;
	font-size: 18px;
}
/*--- [RULES] ---*/
a.button {
	display: inline-block;
	width: 191px;
	height: 53px;
	padding: 14px 0px 0px 0px;
	background: url(../img/but/but_sprite.png) left top no-repeat;
	text-align: center;
	font-size: 17px;
	color: #ffffff;
	font-weight: bold;
}
.button:hover {
	background-position: left -60px;
}
.button:active {
	padding-top: 18px;
	background-position: left -120px;
}
a.button-green,
a.button-green:hover,
a.button-green:active {
	width: auto;
	height: 52px;
	padding: 0px 26px;
	margin: 0px 0px 8px 0px;
	background: #20a97f;
	border-bottom: 4px solid #055e34;
	box-shadow: 3px 5px 1px rgba(0, 0, 0, 0.3);
	border-radius: 12px;
	line-height: 52px;
}
a.button-green:hover {
	background: #0fad7d;
}
a.button-green:active {
	height: 48px;
	margin-top: 2px;
	margin-bottom: 10px;
	background: #0f8964;
	border-bottom-color: transparent;
	box-shadow: none;
	line-height: 48px;
	border-top: 1px solid #0c6e50;
}
.hotkey {
	font-size: 11px;
	color: #666666;
}
input::-webkit-input-placeholder
	{
	text-align: left;
	}	
input:-moz-placeholder
	{
	text-align: center;
	}	
.hidden
	{
	display: none;
	}	
.clear
	{
	clear: both;
	}
.table-block
	{
	height: 1px;
	display: table;
	}
    .table-block > .row-block
        {
		height: 100%;
        display: table-row;
        }
        .table-block > .row-block > .column
            {
            display: table-cell;
            float: none;
            vertical-align: middle;
            }
.inline-block
	{
	overflow: hidden;
	}
	.inline-block > .column
		{
		float: left;
		}